home *** CD-ROM | disk | FTP | other *** search
- /*
- File: MoreWindows.h
-
- Contains:
-
- Written by: Pete Gontier (PCG)
-
- Copyright: Copyright (c) 1998 Apple Computer, Inc.
-
- Change History (most recent first):
-
- <3> 9/9/98 PCG re-work import and export pragmas
- <2> 7/24/98 PCG coddle linker (C++, CFM-68K)
- <1> 6/16/98 PCG initial checkin
- */
-
-
- #pragma once
-
- #include "MorePrefix.h"
-
- #include <MacWindows.h>
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #pragma import on // for clients
- #pragma export on // for building a library
-
- pascal OSStatus MoveWindowToAlertPosition (WindowRef);
-
- pascal OSErr MoreNewWindow ( const Rect * boundsRect,
- ConstStr255Param title,
- short theProc,
- Boolean goAwayFlag,
- long refCon,
- WindowRef *window );
-
- #pragma import reset // for clients
- #pragma export reset // for building a library
-
- #ifdef __cplusplus
- }
- #endif
-